【例子介绍】企业人事管理信息系统(C#,winform)
根据企业对人事管理的要求,本系统可以实现以下目标: 操作简单方便、界面简洁美观。 在查看员工信息时,可以对当前员工的家庭情况、培训情况进行添加、修改、删除的操作。 方便快捷的全方位数据查询。 ...
【相关图片】
【源码结构】
文件清单
├── PWMS
│ ├── PWMS
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── bar
│ │ │ ├── Interop.Office.dll
│ │ │ ├── Interop.VBIDE.dll
│ │ │ ├── Interop.Word.dll
│ │ │ ├── PWMS.exe
│ │ │ ├── PWMS.pdb
│ │ │ ├── PWMS.vshost.exe
│ │ │ ├── PWMS.vshost.exe.manifest
│ │ │ └── 程序使用说明.doc
│ │ ├── Database
│ │ │ ├── db_PWMS_log.ldf
│ │ │ └── db_PWMS.mdf
│ │ ├── DataClass
│ │ │ └── MyMeans.cs
│ │ ├── F_Login.cs
│ │ ├── F_Login.designer.cs
│ │ ├── F_Login.resx
│ │ ├── F_Main.cs
│ │ ├── F_Main.designer.cs
│ │ ├── F_Main.resx
│ │ ├── Image
│ │ │ ├── 01.png
│ │ │ ├── 02.png
│ │ │ ├── 03.png
│ │ │ ├── 04.png
│ │ │ ├── 05.png
│ │ │ ├── 06.png
│ │ │ ├── 07.png
│ │ │ ├── 08.png
│ │ │ ├── 09.png
│ │ │ ├── PEOPLE.jpg
│ │ │ ├── 主界面.bmp
│ │ │ ├── 备份.bmp
│ │ │ └── 登录.bmp
│ │ ├── InfoAddForm
│ │ │ ├── F_Address.cs
│ │ │ ├── F_Address.designer.cs
│ │ │ ├── F_Address.resx
│ │ │ ├── F_Basic.cs
│ │ │ ├── F_Basic.designer.cs
│ │ │ ├── F_Basic.resx
│ │ │ ├── F_ClewSet.cs
│ │ │ ├── F_ClewSet.designer.cs
│ │ │ └── F_ClewSet.resx
│ │ ├── ModuleClass
│ │ │ └── MyModule.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── Interop.Microsoft.Office.Core.dll
│ │ │ ├── Interop.Microsoft.Office.Interop.Word.dll
│ │ │ ├── Interop.Office.dll
│ │ │ ├── Interop.VBIDE.dll
│ │ │ ├── Interop.Word.dll
│ │ │ ├── PWMS.csproj.FileListAbsolute.txt
│ │ │ ├── PWMS.csproj.GenerateResource.Cache
│ │ │ ├── PWMS.csproj.ResolveComReference.cache
│ │ │ ├── PWMS.exe
│ │ │ ├── PWMS.F_Login.resources
│ │ │ ├── PWMS.F_Main.resources
│ │ │ ├── PWMS.InfoAddForm.F_Address.resources
│ │ │ ├── PWMS.InfoAddForm.F_Basic.resources
│ │ │ ├── PWMS.InfoAddForm.F_ClewSet.resources
│ │ │ ├── PWMS.pdb
│ │ │ ├── PWMS.PerForm.F_AddressList.resources
│ │ │ ├── PWMS.PerForm.F_ClearData.resources
│ │ │ ├── PWMS.PerForm.F_Find.resources
│ │ │ ├── PWMS.PerForm.F_HaveBack.resources
│ │ │ ├── PWMS.PerForm.F_ManFile.resources
│ │ │ ├── PWMS.PerForm.F_Stat.resources
│ │ │ ├── PWMS.PerForm.F_UserAdd.resources
│ │ │ ├── PWMS.PerForm.F_UserPope.resources
│ │ │ ├── PWMS.PerForm.F_User.resources
│ │ │ ├── PWMS.PerForm.F_WordPad.resources
│ │ │ ├── PWMS.Properties.Resources.resources
│ │ │ └── TempPE
│ │ ├── PerForm
│ │ │ ├── F_AddressList.cs
│ │ │ ├── F_AddressList.designer.cs
│ │ │ ├── F_AddressList.resx
│ │ │ ├── F_ClearData.cs
│ │ │ ├── F_ClearData.designer.cs
│ │ │ ├── F_ClearData.resx
│ │ │ ├── F_Find.cs
│ │ │ ├── F_Find.designer.cs
│ │ │ ├── F_Find.resx
│ │ │ ├── F_HaveBack.cs
│ │ │ ├── F_HaveBack.designer.cs
│ │ │ ├── F_HaveBack.resx
│ │ │ ├── F_ManFile.cs
│ │ │ ├── F_ManFile.designer.cs
│ │ │ ├── F_ManFile.resx
│ │ │ ├── F_Stat.cs
│ │ │ ├── F_Stat.designer.cs
│ │ │ ├── F_Stat.resx
│ │ │ ├── F_UserAdd.cs
│ │ │ ├── F_UserAdd.designer.cs
│ │ │ ├── F_UserAdd.resx
│ │ │ ├── F_User.cs
│ │ │ ├── F_User.designer.cs
│ │ │ ├── F_UserPope.cs
│ │ │ ├── F_UserPope.designer.cs
│ │ │ ├── F_UserPope.resx
│ │ │ ├── F_User.resx
│ │ │ ├── F_WordPad.cs
│ │ │ ├── F_WordPad.designer.cs
│ │ │ └── F_WordPad.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── PWMS.csproj
│ ├── PWMS.sln
│ └── PWMS.suo
└── 程序使用说明.doc
15 directories, 106 files
评论